home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.plaf.basic;
-
- import java.awt.Point;
- import java.awt.Rectangle;
- import java.awt.event.MouseEvent;
- import java.awt.event.MouseMotionAdapter;
-
- class BasicComboPopup$ListMouseMotionListener extends MouseMotionAdapter {
- // $FF: synthetic field
- BasicComboPopup this$0;
-
- public void mouseMoved(MouseEvent anEvent) {
- Point location = anEvent.getPoint();
- Rectangle r = new Rectangle();
- this.this$0.list.computeVisibleRect(r);
- if (r.contains(location)) {
- this.this$0.valueIsAdjusting = true;
- this.this$0.updateListBoxSelectionForEvent(anEvent, false);
- this.this$0.valueIsAdjusting = false;
- }
-
- }
-
- // $FF: synthetic method
- BasicComboPopup$ListMouseMotionListener(BasicComboPopup this$0) {
- this.this$0 = this$0;
- }
- }
-